HTMLify
index.html
Views: 367 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <link rel="stylesheet" href="style.css" /> <title>Guess My Number!</title> </head> <body> <header> <h1>Guess My Number!</h1> <p class="between">(Between 1 and 20)</p> <button class="btn again">Again!</button> <div class="number">?</div> </header> <main> <section class="left"> <input type="number" class="guess" /> <button class="btn check">Check!</button> </section> <section class="right"> <p class="message">Start guessing...</p> <p class="label-score">💯 Score: <span class="score">20</span></p> <p class="label-highscore"> 🥇 Highscore: <span class="highscore">0</span> </p> </section> </main> <script src="script.js"></script> </body> </html> |